:root{
    --excel:#217346;
    --excel-dark:#165A34;
    --excel-light:#2ca564;
    --dark:#222;
    --gray:#f4f5f7;
    --border:#d8d8d8;
     --vert-fonce:#003223;
    --vert-foret:#007F3B;
    --vert-clair:#7AC741;
    --jaune:#FEC700;
    --blanc-lin:#F9FAF5;
    --border: #D8E8D0;
    --text:#1A1A1A;
    --muted:#5A6B62;
    --primary:#107C41;
    --primary-dark:#0B5D31;
    --primary-light:#EAF8F0;
    --text:#1F2937;
    --text-light:#6B7280;
    --white:#FFFFFF;
    }

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:transparent;
    padding:40px;
}

.target-card{
    max-width:500px;
    margin:15px;
    background:transparent;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    border:2px solid var(--vert-fonce);
}

.target-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#107C41,#34D399);
}

.card-header{
    padding:10px;
    background:linear-gradient(135deg,var(--primary-dark),var(--primary));
    color:white;
    text-align:center;
    display:flex;
    gap:20px;
}

.card-header .icon{
    width:30px;
    height:30px;
    background:rgba(255,255,255,.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:10px;
    backdrop-filter:blur(5px);
}

.card-header h2{
    font-size:1.5rem;
    margin-bottom:10px;
    font-weight:700;
}

.card-header p{
    max-width:100px;
    margin:auto;
    opacity:.95;
    line-height:1;
}

.card-body{
    padding:10px;
}

.target-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:10px;
}

.target-item{
    background:var(--primary-light);
    border:1px solid rgba(16,124,65,.1);
    border-radius:16px;
    padding:10px;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.35s ease;
    cursor:pointer;
}

.target-item:hover{
    transform:translateY(-6px);
    background:var(--primary);
    color:white;
    box-shadow:0 12px 25px rgba(16,124,65,.25);
}

.target-item:hover .target-icon{
    background:white;
    color:var(--primary);
}

.target-icon{
    width:35px;
    height:35px;
    min-width:55px;
    border-radius:14px;
    background:var(--primary);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.35s;
}

.target-title{
    font-size:1rem;
    font-weight:600;
}

.card-footer{
    padding:15px 20px;
    background:#fafafa;
    border-top:1px solid #eee;
    text-align:center;
}

.card-footer span{
    display:inline-block;
    background:var(--primary-light);
    color:var(--primary-dark);
    padding:5px 10px;
    border-radius:50px;
    font-weight:600;
}

@media(max-width:600px){

    body{
        padding:10px;
    }

    .card-header,
    .card-body{
        padding:20px 10px;
    }

    .card-header h2{
        font-size:1.6rem;
    }
}